home *** CD-ROM | disk | FTP | other *** search
Text File | 1999-03-04 | 933 b | 40 lines | [TEXT/ToyS] |
- property sasShareLoc : {0, 0}
-
-
- on run
- set remoteFinder to (choose application with prompt "Choose a remote Finder")
-
- set inf to ¬
- (display info titled ¬
- "Waiting for Sharing" message (remoteFinder as string) ¬
- located at sasShareLoc)
-
- display info inf message ¬
- "Telling Finder to start it up" at line 2
-
- set «class fshr» of remoteFinder to true
-
- set waitSecs to 60
-
- repeat while not («class fshr» of remoteFinder)
- display info inf message ¬
- ("Wait another " & waitSecs & " seconds") at line 2
- pause for 1 with seconds timing
- set waitSecs to waitSecs - 1
- if (waitSecs < 1) then exit repeat
- end repeat
-
- if («class fshr» of remoteFinder) then
- display info inf message ¬
- "It is up!" at line 2
- else
- display info inf message ¬
- "Can't get it up!" at line 2
- beep
- end if
-
- pause for 3 with seconds timing
-
- set sasShareLoc to screen location of ¬
- (display info inf with disposal)
- end run